diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-10-12 02:52:22 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-10-12 02:53:52 +0300 |
commit | d05ea66f4bbcf0cc5c8908f3435c68de1b070fa1 (patch) | |
tree | 7c7a769206646f2b81a0eda0680f0be5033a4197 /contrib |
Начальная версияv0.0.1
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/dev/docker-compose.yml | 20 | ||||
-rw-r--r-- | contrib/prod/.env | 3 | ||||
-rw-r--r-- | contrib/prod/docker-compose.yml | 37 |
3 files changed, 60 insertions, 0 deletions
diff --git a/contrib/dev/docker-compose.yml b/contrib/dev/docker-compose.yml new file mode 100644 index 0000000..2987192 --- /dev/null +++ b/contrib/dev/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3.9' + +services: + + db: + image: postgres + restart: always + shm_size: 128mb + environment: + POSTGRES_DB: app + POSTGRES_USER: app + POSTGRES_PASSWORD: app + ports: + - 5432:5432 + + adminer: + image: adminer + restart: always + ports: + - 8090:8080 diff --git a/contrib/prod/.env b/contrib/prod/.env new file mode 100644 index 0000000..4f0dd77 --- /dev/null +++ b/contrib/prod/.env @@ -0,0 +1,3 @@ +POSTGRES_DB=shorg +POSTGRES_USER=shorg +POSTGRES_PASSWORD=shorg
\ No newline at end of file diff --git a/contrib/prod/docker-compose.yml b/contrib/prod/docker-compose.yml new file mode 100644 index 0000000..83e0dd4 --- /dev/null +++ b/contrib/prod/docker-compose.yml @@ -0,0 +1,37 @@ +version: '3.3' + +services: + db: + image: postgres + shm_size: 128mb + env_file: .env + volumes: + - data:/var/lib/postgresql/data + healthcheck: + test: [ "CMD-SHELL", "pg_isready -U app -d app" ] + interval: 30s + timeout: 30s + retries: 5 + restart: unless-stopped + app: + image: gitrepo.ru/neonxp/app:latest + volumes: + - config:/config + command: serve -config=/config/prod.yaml + depends_on: + db: + condition: service_healthy + ports: + - 8093:8000 + restart: unless-stopped + migration: + image: gitrepo.ru/neonxp/app:latest + volumes: + - config:/config + command: db migrate -config=/config/prod.yaml + depends_on: + db: + condition: service_healthy +volumes: + data: + config: |