* added containers for db and apollo * connected to test db * added network again * Added base for tests
17 lines
295 B
YAML
17 lines
295 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
api:
|
|
build:
|
|
context: ./
|
|
dockerfile: ./Dockerfile
|
|
container_name: photowall.graphql
|
|
hostname: graphql.local
|
|
ports:
|
|
- "4000:4000"
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: photowall-docker-network
|