Skip to content

Instantly share code, notes, and snippets.

@DanielRamosAcosta
DanielRamosAcosta / Dockerfile
Created November 30, 2016 01:35
Base de datos PostgreSQL junto con pgweb usando Docker
# docker build -t postgresql .
# docker run -d -p 0.0.0.0:5432:5432 --name postgresql_inst_1 postgresql
FROM ubuntu
ARG usuario=usuario
ARG password=password
ARG database=database
RUN apt-get update