diff --git a/docker-compose.yml b/docker-compose.yml index 2569cc1..d087d18 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,27 +1,27 @@ version: "3" services: - goff-db: - image: postgres - ports: - - "5432:5432" - volumes: - - "${PWD}/postgres.conf:/etc/postgresql/postgresql.conf" - - "goff-db:/var/lib/postgresql/data:rw" - env_file: ${PWD}/.env +# goff-db: +# image: postgres +# ports: +# - "5432:5432" +# volumes: +# - "${PWD}/postgres.conf:/etc/postgresql/postgresql.conf" +# - "goff-db:/var/lib/postgresql/data:rw" +# env_file: ${PWD}/.env goff: build: context: . dockerfile: "${PWD}/Dockerfile" env_file: ${PWD}/.env - depends_on: - - goff-db +# depends_on: +# - goff-db environment: - DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?sslmode=disable - links: - - goff-db:goff.db +# links: +# - goff-db:goff.db -volumes: - goff-db: - external: true \ No newline at end of file +#volumes: +# goff-db: +# external: true \ No newline at end of file diff --git a/user-data.sh b/user-data.sh new file mode 100644 index 0000000..ca4a059 --- /dev/null +++ b/user-data.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +/usr/local/bin/docker-compose build || exit +/usr/local/bin/docker-compose up \ No newline at end of file