Conversation
Notices
-
Embed this notice
Alex Gleason (alex@gleasonator.com)'s status on Monday, 05-Sep-2022 14:22:50 JST Alex Gleason Rebased has OTP releases and Docker images now:
- OTP: https://gitlab.com/soapbox-pub/rebased/-/jobs/artifacts/develop/download?job=release
- Docker: `registry.gitlab.com/soapbox-pub/rebased`
Both are updated on every commit to develop!
Soon we'll be adding envvars so you don't have to mount a volume to edit the config.-
Embed this notice
Alex Gleason (alex@gleasonator.com)'s status on Monday, 05-Sep-2022 14:26:56 JST Alex Gleason Also a fun thing, Soapbox has a Docker image now too: `registry.gitlab.com/soapbox-pub/soapbox`
https://gitlab.com/soapbox-pub/soapbox/-/blob/develop/Dockerfile
It's an Nginx serving static files. You can link it to the backend in a separate container by passing `BACKEND_URL`. Haven't tested it with federation yet, this is still new and kind of experimental. -
Embed this notice
Alex Gleason (alex@gleasonator.com)'s status on Monday, 05-Sep-2022 14:29:50 JST Alex Gleason Here’s a sample docker-compose:
version: "3.9" services: soapbox: image: registry.gitlab.com/soapbox-pub/soapbox restart: always ports: - "5000:5000" environment: - BACKEND_URL=http://rebased:4000 rebased: image: registry.gitlab.com/soapbox-pub/rebased restart: always depends_on: - db ports: - "4000:4000" volumes: - ./volumes/rebased/config.exs:/var/lib/pleroma/config.exs - ./volumes/rebased/uploads:/var/lib/pleroma/uploads environment: - PORT=4000 db: image: postgres:14-alpine restart: always volumes: - ./volumes/rebased-db/pgdata:/var/lib/postgresql/data - ./volumes/rebased-db/pginit:/docker-entrypoint-initdb. environment: - POSTGRES_DB=postgres - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgresIn conversation permalink -
Embed this notice
Alex Gleason (alex@gleasonator.com)'s status on Tuesday, 06-Sep-2022 07:41:50 JST Alex Gleason Good point! In conversation permalink -
Embed this notice
Aldis (aldis@sheep.network)'s status on Tuesday, 06-Sep-2022 07:41:51 JST Aldis ? I suppose you’ll also updatepleroma_ctl update to download Rebased and not regular Pleroma ?
Thank you Alex for your hard work.
In conversation permalink Attachments
-
Embed this notice