This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/.devcontainer/docker-compose.yml

31 lines
596 B
YAML
Raw Normal View History

2021-10-24 04:18:18 +02:00
version: '3.0'
services:
workspace:
build:
context: './'
dockerfile: './Dockerfile'
volumes:
- '..:/workspace:cached'
command: 'sleep infinity'
2022-04-08 21:36:29 +02:00
extra_hosts:
- 'host.docker.internal:host-gateway'
2021-10-24 04:18:18 +02:00
thream-database:
2022-08-23 23:53:07 +02:00
image: 'postgres:14.5'
2021-10-24 04:18:18 +02:00
environment:
POSTGRES_USER: 'user'
POSTGRES_PASSWORD: 'password'
POSTGRES_DB: 'thream'
volumes:
- 'postgres-data:/var/lib/postgresql/data'
restart: 'unless-stopped'
thream-maildev:
image: 'maildev/maildev:1.1.0'
ports:
- '1080:80'
volumes:
postgres-data: