You've already forked hastebin-ansi
mirror of
https://github.com/armbian/hastebin-ansi.git
synced 2026-01-06 12:30:55 -08:00
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.
13 lines
230 B
YAML
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
|