Fixed the issue with PlainText (Complete Anon) posting Need to fix device sign on issues. Need to make it so that the non-signed in devices can only see their equalivant level of posts. (i.e. plaintext, public-encrypted, private-encrypted)
23 lines
525 B
YAML
23 lines
525 B
YAML
services:
|
|
shard-test:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
container_name: greencoast-shard-test
|
|
restart: unless-stopped
|
|
user: "0:0"
|
|
ports:
|
|
- "9080:9080"
|
|
- "9082:9082"
|
|
volumes:
|
|
- ./testdata:/var/lib/greencoast
|
|
- ./configs/shard.test.yaml:/app/shard.yaml:ro
|
|
- ./client:/app/client:ro
|
|
|
|
cloudflared:
|
|
image: cloudflare/cloudflared:latest
|
|
command: tunnel --no-autoupdate run --token ${CF_TUNNEL_TOKEN}
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- shard-test
|