mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-10-31 19:11:21 +00:00
7c613bc788
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.
12 lines
230 B
YAML
12 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
|