haste-server/docker-compose.yaml
Leopere 7c613bc788
Delete superfluous network definition (#404)
No need to define a network when compose files and stackfiles come with their own cross container network defined as `default` superfluous networks add nothing.
2022-02-14 15:04:06 -03:00

13 lines
230 B
YAML

version: '3.0'
services:
haste-server:
build: .
environment:
- STORAGE_TYPE=memcached
- STORAGE_HOST=memcached
- STORAGE_PORT=11211
ports:
- 7777:7777
memcached:
image: memcached:latest