You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
668 B

services:
ddjj:
image: jirho/ddjj:latest
#volumes:
# - /etc/localtime:/etc/localtime/:ro
# - /etc/timezone:/etc/timezone/:ro
depends_on:
- pgsql
ports:
- 5556:80
- 5557:443
expose:
- 80
- 443
restart: always
pgsql:
image: postgres:11.6
ports:
- 5555:5432
environment:
TZ: America/Argentina/Buenos_Aires
POSTGRES_PASSWORD: fcytadmin01
POSTGRES_DB: ddjj
PGDATA: /var/lib/postgresql/data/pgdata
#volumes:
#- ./pgsql:/var/lib/postgresql/data
# - /etc/localtime:/etc/localtime:ro
# - /etc/timezone:/etc/timezone:ro
restart: always