2020-11-15 21:42:02 +00:00
---
title: Manual Outpost deployment in docker-compose
---
To deploy an outpost with docker-compose, use this snippet in your docker-compose file.
You can also run the outpost in a separate docker-compose project, you just have to ensure that the outpost container can reach your application container.
```yaml
version: "3.5"
services:
2021-03-05 13:14:09 +00:00
authentik_proxy:
2021-09-19 19:52:49 +00:00
image: ghcr.io/goauthentik/proxy:2021.9.1-rc3
2021-03-05 13:14:09 +00:00
ports:
2021-09-13 20:03:02 +00:00
- 4180:4180
- 4443:4443
# Starting in authentik 2021.9, use the ports below
# - 9000:9000
# - 9443:9443
2021-03-05 13:14:09 +00:00
environment:
AUTHENTIK_HOST: https://your-authentik.tld
AUTHENTIK_INSECURE: "false"
AUTHENTIK_TOKEN: token-generated-by-authentik
2021-09-13 20:05:35 +00:00
# Starting with 2021.9, you can optionally set this too
2021-09-08 18:04:56 +00:00
# when authentik_host for internal communication doesn't match the public URL
# AUTHENTIK_HOST_BROWSER: https://external-domain.tld
2021-05-14 09:19:09 +00:00
# Or, for the LDAP Outpost
authentik_proxy:
2021-09-19 19:52:49 +00:00
image: ghcr.io/goauthentik/ldap:2021.9.1-rc3
2021-05-14 09:19:09 +00:00
ports:
- 389:3389
environment:
AUTHENTIK_HOST: https://your-authentik.tld
AUTHENTIK_INSECURE: "false"
AUTHENTIK_TOKEN: token-generated-by-authentik
2020-11-15 21:42:02 +00:00
```