version: "2" services: clog: container_name: clog image: clog:latest build: . ports: - "8888:8888" environment: - POSTGRES_PASSWORD=postgres depends_on: - postgres postgres: container_name: clog-postgres image: postgres:12-alpine volumes: - .vols/database:/var/lib/postgresql/data ports: - "5555:5432" environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres - POSTGRES_DB=clog